chore(deps): update google.golang.org/genproto/googleapis/rpc digest to 925bb5d#167
Conversation
ℹ Artifact update noticeFile name: go.modIn order to perform the update(s) described in the table above, Renovate ran the
Details:
|
ca84dcf to
600f3a8
Compare
600f3a8 to
a5c95ad
Compare
a5c95ad to
d803e03
Compare
a7934c4 to
d803e03
Compare
ecf96c9 to
d803e03
Compare
d803e03 to
70dc332
Compare
70dc332 to
03ed964
Compare
b6f1f07 to
019a110
Compare
019a110 to
7c4d543
Compare
b313701 to
03d9249
Compare
d9b342a to
bd862af
Compare
60e7b98 to
d8fe896
Compare
d8fe896 to
4b02b6c
Compare
4b02b6c to
87e61b1
Compare
87e61b1 to
bddbbae
Compare
bddbbae to
f0d50b1
Compare
ℹ️ Artifact update noticeFile name: go.modIn order to perform the update(s) described in the table above, Renovate ran the
Details:
|
|
🤖 Finished Review · ✅ Success · Started 9:49 PM UTC · Completed 9:57 PM UTC |
ReviewFindingsCritical
Previous runReviewFindingsMedium
Low
Labels: PR updates Go module dependencies (go.mod, go.sum) |
…to 925bb5d Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
|
🤖 Finished Review · ✅ Success · Started 9:27 PM UTC · Completed 9:34 PM UTC |
| module github.com/konflux-ci/qe-tools | ||
|
|
||
| go 1.23.0 | ||
| go 1.25.0 |
There was a problem hiding this comment.
[critical] Go version mismatch
The go directive is bumped from 1.23.0 to 1.25.0, but CI workflows pin Go 1.23.x. The go.mod go directive acts as a minimum version gate: starting with Go 1.21, if the toolchain running the build is older than the version in go.mod, the build refuses to proceed. CI in .github/workflows/test.yml uses go-version: [1.23.x] (line 15) and go-version: 1.23 (line 53), .github/workflows/lint.yml uses go-version: 1.23 (line 19), and .github/workflows/pre-commit.yml uses go-version: 1.23 (line 17). All will fail when they encounter go 1.25 in go.mod. Additionally, the Dockerfile uses ubi9/go-toolset:9.8-1780373831, which ships Go 1.23 — that container build will also fail.
Suggested fix: Either revert the go directive to go 1.23.0 (keeping the dependency bumps), or update all CI workflow Go versions and the Dockerfile base image to a Go 1.25-compatible toolchain. The CI files to update are .github/workflows/test.yml (lines 15 and 53), .github/workflows/lint.yml (line 19), .github/workflows/pre-commit.yml (line 17), plus Dockerfile (line 1).
This PR contains the following updates:
31a09d3→925bb5dWarning
Some dependencies could not be looked up. Check the warning logs for more information.
Configuration
📅 Schedule: (UTC)
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
To execute skipped test pipelines write comment
/ok-to-test.Documentation
Find out how to configure dependency updates in MintMaker documentation or see all available configuration options in Renovate documentation.